home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / programmer / 5617 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.5 KB

  1. Path: newsroom.utas.edu.au!bruny!ntring
  2. From: ntring@bruny.mpx.com.au (Nick Ring)
  3. Newsgroups: comp.sys.amiga.programmer
  4. Subject: Re: Team AMIGA Wish List
  5. Date: 17 Mar 1996 19:17:46 GMT
  6. Organization: University of Tasmania, Australia.
  7. Message-ID: <4ihogq$iui@franklin.its.utas.edu.au>
  8. References: <4ibskg$rr3@news.ox.ac.uk>  <68772020@0humpty.tomate.tng.oche.de>
  9. Reply-To: nring@mpx.com.au
  10. NNTP-Posting-Host: bruny.its.utas.edu.au
  11. X-Newsreader: TIN [version 1.2 PL2]
  12.  
  13. Andreas Mixich (humpty@TOMATE.TNG.OCHE.DE) wrote:
  14.  
  15. : > >Give the OS a global ARexx server and the User a shell,that also can
  16. : > >directly send ARexx messages. This way this would work easily.
  17. : > 
  18. : > You can already send ARexx messages from a shell:
  19. : > SYS:> rx "address PORTNAME an_arexx_command"
  20.  
  21. : No, you did *not* understand ! This one launches an extra task or process.
  22. : Rx is a command itself. I am talking of a shell, that executes ARexx
  23. : commands without submitting a port, for example. Try that one, for example:
  24. : If you enter
  25. : Shell.> rx 'do i = 1 TO 2; say Hello; end'
  26. : you get
  27. : +++ Error 26 in line 1: Missing or unexpected END
  28. : Command returned 10/26: Missing or unexpected END
  29.  
  30. Try the following, change the single quote (') to double quotes (")...
  31.  
  32. rx "do i = 1 TO 2; say Hello; end"
  33.  
  34. : Have you ever heard about WShell bythe creator of ARexx ? Once ARexx is
  35. : more powerfull and better integrated (even better ;-)) this might be cool.
  36.  
  37. : Mixing of DOS and ARexx is possible already by doing a SHELL or ADDRESS
  38. : COMMAND. But that way,it even would be more easy.
  39.  
  40. nick
  41.